/* ===== ПРОСТОЙ ФУТЕР ===== */
.footer-section {
    background: linear-gradient(145deg, hsl(var(--dark-hsl)), hsl(var(--dark-purple-hsl)));
    padding: 3rem 1rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

/* Брендинг */
.footer-brand {
    padding: 1rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.mobile-logo {
    display: none;
}

.footer-brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-tagline {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    color: var(--orange);
    border-color: var(--orange);
}

/* Колонки */
.footer-column {
    padding: 1rem;
}

.footer-column-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column-title i {
    color: var(--orange);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--orange);
}

/* Контакты */
.contact-column {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}

.footer-contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 0.9rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-value {
    color: var(--text-primary);
    font-size: 0.85rem;
    text-decoration: none;
}

.contact-value:hover {
    color: var(--orange);
}

/* CTA кнопка */
.footer-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
}

/* Разделитель */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    margin: 2rem 0;
}

/* Нижняя часть */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copyright i {
    color: var(--orange);
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-transform: uppercase;
}

.badge-item i {
    color: var(--orange);
}

.footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--orange);
}

/* Скрываем декорации */
.footer-decoration {
    display: none;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .desktop-logo {
        display: none;
    }
    
    .mobile-logo {
        display: block;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-social {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .social-link {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .footer-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .footer-cta-btn {
        width: 100%;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}
